home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo.
- if exist example.bak copy example.bak example.txt >nul
- type example.fed
- echo.
- echo The above commands will now be applied to the file EXAMPLE.TXT.
- echo.
- pause
- fed example.txt example.fed
- echo.
- echo You will now be able to compare the original file
- echo (EXAMPLE.BAK) with the modified file (EXAMPLE.TXT).
- echo.
- pause
- compare2 example.bak example.txt
- copy example.bak example.txt >nul
- del example.bak >nul
- echo.
-
-
-